home *** CD-ROM | disk | FTP | other *** search
- package javax.swing;
-
- final class DefaultCellEditor$1 extends DefaultCellEditor.EditorDelegate {
- // $FF: synthetic field
- private final JTextField val$textField;
-
- // $FF: synthetic method
- DefaultCellEditor$1(JTextField var1, DefaultCellEditor var2) {
- super(var2);
- this.val$textField = var1;
- }
-
- public Object getCellEditorValue() {
- return this.val$textField.getText();
- }
-
- public void setValue(Object var1) {
- this.val$textField.setText(var1 != null ? var1.toString() : "");
- }
- }
-